最近有銀行在更新
似乎有災情
來看看C#是否可以寫出
定義銀行帳戶類型
您可以從建立能定義該行為之類別的基礎項目來開始。 使用 file: new 命令建立新的檔案。 將它命名為 BankAccount.cs。 將下列程式碼新增至 BankAccount.cs 檔案:
namespace classes
{
    public class BankAccount
    {
        public string Number { get; }
        public string Owner { get; set; }
        public decimal Balance { get; }
        public void MakeDeposit(decimal amount, DateTime date, string note)
        {
        }
        public void MakeWithdrawal(decimal amount, DateTime date, string note)
        {
        }
    }
}
https://docs.microsoft.com/zh-tw/dotnet/csharp/tutorials/intro-to-csharp/introduction-to-classes
DEAR ALL 我們明天見